runtime.mcache.tiny (field)

9 uses

	runtime (current package)
		malloc.go#L1047: 			if off+size <= maxTinySize && c.tiny != 0 {
		malloc.go#L1049: 				x = unsafe.Pointer(c.tiny + off)
		malloc.go#L1067: 			if !raceenabled && (size < c.tinyoffset || c.tiny == 0) {
		malloc.go#L1069: 				c.tiny = uintptr(x)
		mcache.go#L38: 	tiny       uintptr
		mcache.go#L264: 	c.tiny = 0
		mgcmark.go#L1584: 		if c == nil || c.tiny == 0 {
		mgcmark.go#L1587: 		_, span, objIndex := findObject(c.tiny, 0, 0)
		mgcmark.go#L1589: 		greyobject(c.tiny, 0, 0, span, gcw, objIndex)